
/*--------Global classes--------*/

.c-btn {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6em 1.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
    cursor: pointer !important;
}

.c-btn {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

.c-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.c-btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.c-btn::after {
    background-color: var(--y-color);
}

.c-btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.box {
    position: relative;
}

.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 80px;
    height: 80px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: var(--y-color);
    background: linear-gradient(var(--y-color) 0%, var(--y-color) 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid var(--p-color);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--p-color);
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--p-color);
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--p-color);
}

.y-color {
    color: var(--y-color);
}

.carousel-img img {
    border-radius: 7px;
    box-shadow: 0px 9px 13px #00000067;
    border: 4px solid var(--y-color);
}


/*--X-----Global classes----X---*/


/* --------Navbar--------- */

.navbar {
    padding: 0px 0px;
    background: var(--black);
    font-family: var(--poppins);
}

    


.navbar .nav-link {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--w-color) !important;
    font-weight: 300;
}

.navbar .active {
    color: var(--y-color) !important;
}

.navbar .navbar-toggler>div {
    height: 3px;
    width: 33px;
    background: var(--y-color);
    margin: 4px;
}


   


/* ---X----Navbar-----X--- */


/* -----Home------ */

#home {
    background: url('../assets/img/bg/1.webp') no-repeat center/cover;
    height: 40vh;
    font-family: var(--poppins);
}


#home .home-caption {
    position: relative;
    display: inline;
    text-align: center;
    flex-direction: column;
    align-items: center;
    background: #2629388e;
    height: fit-content;
    margin: 10px auto !important;
   
    backdrop-filter: blur(1px) saturate(50%);
    -webkit-backdrop-filter: blur(1px) saturate(50%);
    background-color: #0c0c0c1a;
    border-radius: 12px;
    opacity: 0.99;
    font-size: 30px;
    
}




#home .hire {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6em 3.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
}

#home .hire {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

#home .hire:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#home .hire::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

#home .hire::after {
    background-color: var(--y-color);
}

#home .hire:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
@media screen and (max-width:100vw) {
    #home .home-caption .row{
      display:none;
    }
    #home{height: 60vh;}

   
} 

/* X----Home-----X */


/* ----Services----- */

#services {
    padding: 70px 0px;
    font-family: var(--poppins);
}

#services h5 {
    font-size: 15px;
    color: var(--y-color);
}

#services h4 {
    font-size: 30px;
}

#services .service-icon {
    height: 70px;
    width: 70px;
    border: none !important;
    border-radius: 70px;
    background: var(--y-color);
    font-size: 35px;
    color: var(--w-color);
    margin-top: -34px;
}

#services .card {
    border-radius: 0px !important;
    box-shadow: 0px 7px 13px #00000028;
    text-align: center;
}

#services .book {
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6em 1.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
}

#services .book {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

#services .book:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#services .book::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

#services .book::after {
    background-color: var(--y-color);
}

#services .book:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

#services .link {
    margin-top: 50px;
}

#smcardbody a{
    border-radius: 3px;
    display:grid;
    gap: 3px;
    background-color: rgba(7, 7, 10, 0.548);
    margin: 2px;
    padding: 3px;
}
 
#smcardbody i{
    font-size: 40px;
    color:#F79F24;
}

 
#smcardbody hr{
    color:#F79F24;
    border-width: 2px;
}

/* X---Services----X */


/* --------About Us-------- */

#about-us {
    padding: 70px 0px;
    font-family: var(--poppins);
}

#about-us h5 {
    color: var(--y-color);
    font-size: 17px;
}

#about-us .img {
    display: flex;
}

#about-us .background-cover {
    position: absolute;
    width: 100%;
    height: 100%;
}

#about-us .background-cover button {
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    top: 0%;
    height: 70px;
    width: 70px;
    border: none !important;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
    left: 38%;
    top: 34%;
}

#about-us .background-cover button {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

#about-us .background-cover button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#about-us .background-cover button::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

#about-us .background-cover button::after {
    background-color: var(--y-color);
}

#about-us .background-cover button:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

#about-us img {
    border-radius: 7px;
    box-shadow: 0px 6px 9px #00000028;
}


/* X-------About Us-------X */


/* -------Advert----- */

.advert {
    background: url('../assets/img/bg/bg.jpg') no-repeat fixed center/cover;
    font-family: var(--poppins);
    padding: 70px 0px;
}

.advert h4 {
    font-size: 14px;
    color: var(--y-color);
}

.advert h6 {
    font-size: 30px;
}

ul li {
    list-style: none;
}

.advert .fa-check {
    color: var(--y-color);
}


/* X------Advert----X */


/* ------DriversHub---- */

#db {
    padding: 70px 0px;
    font-family: var(--poppins);
}

#db h4 {
    color: var(--y-color);
    font-size: 17px;
}

#db h5 {
    font-size: 30px;
}

#db img {
    border-radius: 7px;
    box-shadow: 0px 5px 9px #00000028;
}


/* --X---DriversHub--X- */


/* ---second advert------ */


/* .s-advert {
    background: url('../assets/img/bg/25.jpg') no-repeat fixed center/cover;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    padding: 100px 0px;
    font-family: var(--poppins);
} */


/* --X-second advert--X--- */


/* -------Service Booking--------- */

#booking {
    padding: 70px 0px;
    font-family: var(--poppins);
    background: var(--p-color);
}

#booking h2 {
    font-size: 17px;
    color: var(--y-color);
    text-align: center;
}

#booking h4 {
    text-transform: uppercase;
    color: var(--y-color);
    font-size: 12px;
}

#booking h1 {
    font-size: 20px;
    color: var(--w-color);
}

#booking img {
    border-radius: 7px;
}

#booking form input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}

#booking form select {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}

#booking form textarea {
    width: 100%;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}


/* X------Service Booking--------X */


/* -------Clients------- */

.clients .client img {
    max-width: 70px;
    margin: auto;
}


/* -X-----Clients-----X- */


/* --------Footer-------- */

footer {
    padding-top: 30px;
    padding-bottom: 20px;
    font-family: var(--poppins);
    background: var(--p-color);
}

footer p {
    color: var(--w-color);
    font-size: 12px;
    margin-top: 10px;
}

footer .social-icons button {
    height: 35px;
    width: 35px;
    border: none !important;
    background: var(--black);
    color: var(--w-color);
    border-radius: 70px;
    margin-right: 7px;
}

footer .social-icons button:hover {
    background: var(--y-color);
}

footer h4 {
    color: var(--w-color);
    font-size: 20px;
}

footer ul li a {
    color: var(--w-color) !important;
    font-size: 13px;
}

footer ul li {
    padding: 8px 0px;
}

footer li {
    color: var(--w-color);
    font-size: 13px;
}

.fa-phone {
    transform: rotate(-270deg);
}

footer input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}

footer hr {
    background: var(--w-color);
}

footer .copyright {
    font-size: 15px;
}

footer p a {
    color: var(--y-color) !important;
    font-size: 14px;
}

.car-img-wrapper {
  width: 100%;
  height: 220px; /* Adjust as needed */
  overflow: hidden;
  border-radius: 8px;
}

.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* X-------Footer-------X */
/* Base styles for all WhatsApp buttons */
.whatsapp-button {
  position: fixed;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

/* Position the Sales button */
.whatsapp-button-sales {
  bottom: 110px; /* Position above the Support button */
  right: 40px;
}

/* Position the Support button */
.whatsapp-button-support {
  bottom: 40px; /* Standard position at the bottom right */
  right: 40px;
}

/* Optional hover effect */
.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Optional media query for smaller screens to adjust positioning */
@media (max-width: 768px) {
  .whatsapp-button-sales {
    bottom: 90px;
    right: 20px;
  }

  .whatsapp-button-support {
    bottom: 20px;
    right: 20px;
  }
}



{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    text-decoration: none !important;
}

html,
body {
    overflow-x: hidden;
}

:root {
    --y-color: #F79F24;
    --black: #000000;
    --p-color: #262938;
    --w-color: #ffffff;
    --poppins: 'Poppins', sans-serif;
}

